.counter-list {
    margin: 0 0 10px;
}
.counter-list:after {
    display: table;
    content: "";
    clear: both;
}

.counter-bubble {
    float: left;
    position: relative;
    width: 220px;
    height: 100px;
    margin-right: 10px;
    text-align: center;
    color: #2756a7;
    padding: 20px 10px;
    border: 1px solid #D0D2D3;
    box-sizing: border-box;
}
.counter-list .counter-bubble:nth-child(3n) {
    margin-right: 0;
}
.counter-bubble .number {
    display: block;
    font-family: "Open Sans", "Arial", "Helvetica", "sans-serif";
    font-size: 32pt;
    margin-bottom: 5px;
    line-height: 0.8;
    font-weight: lighter;
}
.counter-bubble .text {
    display: block;
    font-size: 12pt;
    font-weight: bold;
}
.counter-bubble .big-text {
    font-size: 18pt;
    line-height: 2.5;
}

.counter-bubble.highlight {
    border: 1px solid #2756a7;
    background: #2756a7;
    color: #fff;
}
.counter-bubble.highlight a { color: #fff; }

.counter-bubble.highlight:hover {
    background: #577bb5;
}